import type { CardShadowType } from './src/interface.d';
import type { DefineComponent, PropType, ComputedRef, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps } from 'vue';
import type { InstallType, ClassListInterface } from '../_interface';
import Card from "./src/card";
export declare const FCard: InstallType<DefineComponent<{
    readonly title: {
        readonly type: StringConstructor;
        readonly default: () => string;
    };
    readonly round: {
        readonly type: BooleanConstructor;
        readonly default: () => boolean;
    };
    readonly padding: {
        readonly type: StringConstructor;
        readonly default: () => string;
    };
    readonly shadow: {
        readonly type: PropType<CardShadowType>;
        readonly default: () => CardShadowType;
        readonly validator: (val: CardShadowType) => boolean;
    };
}, {
    prop: {
        readonly title?: unknown;
        readonly round?: unknown;
        readonly padding?: unknown;
        readonly shadow?: unknown;
    } & {
        title: string;
        round: boolean;
        padding: string;
        shadow: CardShadowType;
    } & {};
    classList: ComputedRef<ClassListInterface>;
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, Record<string, any>, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<{
    readonly title?: unknown;
    readonly round?: unknown;
    readonly padding?: unknown;
    readonly shadow?: unknown;
} & {
    title: string;
    round: boolean;
    padding: string;
    shadow: CardShadowType;
} & {}>, {
    title: string;
    round: boolean;
    padding: string;
    shadow: CardShadowType;
}>>;
export declare type CardInstance = InstanceType<typeof Card>;
export * from './src/interface.d';
export default Card;
