export declare const positionClasses: {
    readonly 'top-start': "top-0 start-0";
    readonly 'top-center': "top-0 start-50 translate-middle-x";
    readonly 'top-end': "top-0 end-0";
    readonly 'middle-start': "top-50 start-0 translate-middle-y";
    readonly 'middle-center': "top-50 start-50 translate-middle";
    readonly 'middle-end': "top-50 end-0 translate-middle-y";
    readonly 'bottom-start': "bottom-0 start-0";
    readonly 'bottom-center': "bottom-0 start-50 translate-middle-x";
    readonly 'bottom-end': "bottom-0 end-0";
};
