import { PropType } from 'vue';
import type { Theme, Mode } from './interface';
export declare const Props: {
    readonly theme: {
        readonly type: PropType<Theme>;
        readonly default: () => Theme;
        readonly validator: (v: Theme) => boolean;
    };
    readonly shadow: BooleanConstructor;
    readonly mode: {
        readonly type: PropType<Mode>;
        readonly default: () => Mode;
        readonly validator: (v: Mode) => boolean;
    };
    readonly backgroundColor: StringConstructor;
    readonly textColor: StringConstructor;
    readonly collapse: BooleanConstructor;
};
