import { CSSProperties, VNodeTypes, FunctionalComponent } from 'vue';
export interface TransferLocale {
    description?: string;
}
export interface EmptyProps {
    prefixCls?: string;
    class?: any;
    style?: string | CSSProperties;
    imageStyle?: CSSProperties;
    image?: VNodeTypes | null;
    description?: VNodeTypes;
}
interface EmptyType extends FunctionalComponent<EmptyProps> {
    displayName: string;
    PRESENTED_IMAGE_DEFAULT: VNodeTypes;
    PRESENTED_IMAGE_SIMPLE: VNodeTypes;
}
declare const _default: (EmptyType & ((app: import("vue").App<any>, ...options: any[]) => any) & {
    install?: (app: import("vue").App<any>, ...options: any[]) => any;
}) | (EmptyType & {
    install: (app: import("vue").App<any>, ...options: any[]) => any;
});
export default _default;
