import { ExtractPropTypes, PropType } from 'vue';
import { ConfigurableProps } from '@vexip-ui/config';
import { CardSlots } from './symbol';
export declare const cardProps: {
    inherit: PropType<boolean>;
    title: PropType<string>;
    shadow: PropType<"hover" | "always" | "never">;
    contentStyle: PropType<string | import('vue').CSSProperties | (string | import('vue').CSSProperties)[]>;
    slots: PropType<CardSlots>;
};
export type CardProps = ExtractPropTypes<typeof cardProps>;
export type CardCProps = ConfigurableProps<CardProps>;
