import type { PropType, ExtractPropTypes } from 'vue';
import type { StickyCardEmitInterface } from './interface';
export declare const Props: {
    readonly open: {
        readonly type: BooleanConstructor;
        readonly default: () => boolean;
    };
    readonly background: {
        readonly type: StringConstructor;
        readonly default: () => string;
    };
    readonly openText: {
        readonly type: StringConstructor;
        readonly default: () => string;
    };
    readonly closeText: {
        readonly type: StringConstructor;
        readonly default: () => string;
    };
    readonly openHeight: {
        readonly type: PropType<string | number>;
        readonly default: () => string;
    };
    readonly borderColor: {
        readonly type: StringConstructor;
        readonly default: () => string;
    };
    readonly openEnd: {
        readonly type: PropType<StickyCardEmitInterface>;
        readonly default: () => null;
    };
    readonly closeEnd: {
        readonly type: PropType<StickyCardEmitInterface>;
        readonly default: () => null;
    };
};
export declare type StickyCardPropsType = ExtractPropTypes<typeof Props>;
