import { TdSpaceProps } from './type';
import { PropType } from 'vue';
declare const _default: {
    align: {
        type: PropType<"center" | "end" | "start" | "baseline">;
        validator(val: TdSpaceProps['align']): boolean;
    };
    breakLine: BooleanConstructor;
    direction: {
        type: PropType<"horizontal" | "vertical">;
        default: "horizontal" | "vertical";
        validator(val: TdSpaceProps['direction']): boolean;
    };
    separator: {
        type: PropType<string | ((h: typeof import("vue").h) => import("..").SlotReturnValue)>;
    };
    size: {
        type: PropType<import("./type").SpaceSize | import("./type").SpaceSize[]>;
        default: import("./type").SpaceSize | import("./type").SpaceSize[];
    };
};
export default _default;
