import { ApTitleProps } from '../ap-title/interface';
export type ApCardTitleProps = ApTitleProps & {
    prefix?: any;
    suffix?: any;
};
export interface ApCardProps {
    titleProps?: ApCardTitleProps;
    padding?: string;
}
export interface ApCardSlots {
    default?: () => any;
    titlePrefix?: () => any;
    titleSuffix?: () => any;
}
