import React from 'react';
interface CardContextType {
    cardHeaderBsPrefix: string;
}
declare const context: React.Context<CardContextType | null>;
export default context;
