import React from 'react';
export type CardContextValue = {
    isNested?: boolean;
};
declare const CardContext: React.Context<CardContextValue>;
export default CardContext;
