import { ReactNode } from 'react';
export type CardBaseProps = {
    children: ReactNode;
    title?: string;
};
export type CardHeaderBaseProps = {
    title: string;
};
