import type { IComponentBaseProps } from '../../types';
import type { HTMLAttributes } from 'svelte/elements';
export declare const horizontalOptions: {
    start: string;
    center: string;
    end: string;
};
export declare const verticalOptions: {
    top: string;
    middle: string;
    bottom: string;
};
export type TProps = HTMLAttributes<HTMLDivElement> & IComponentBaseProps & {
    horizontal?: keyof typeof horizontalOptions;
    vertical?: keyof typeof verticalOptions;
};
