import type { Shadow } from './interface';
import type { DefineComponent, PropType, CSSProperties, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps } from 'vue';
declare const _sfc_main: DefineComponent<{
    readonly shadow: {
        readonly type: PropType<Shadow>;
        readonly validator: (v: Shadow) => boolean;
    };
    readonly bodyStyle: {
        readonly type: PropType<CSSProperties>;
        readonly default: () => null;
    };
}, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, Record<string, any>, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<{
    readonly shadow?: unknown;
    readonly bodyStyle?: unknown;
} & {
    bodyStyle: CSSProperties;
} & {
    shadow?: Shadow | undefined;
}>, {
    bodyStyle: CSSProperties;
}>;
export default _sfc_main;
