import type { Property } from '@tenoxui/moxie';
export declare const flexAndGrid: {
    property: (sizing?: number) => Property;
    classes: {
        justifyContent: {
            'justify-start': string;
            'justify-end': string;
            'justify-end-safe': string;
            'justify-center': string;
            'justify-center-safe': string;
            'justify-between': string;
            'justify-around': string;
            'justify-evenly': string;
            'justify-stretch': string;
            'justify-baseline': string;
            'justify-normal': string;
        };
        justifyItems: {
            'justify-items-start': string;
            'justify-items-end': string;
            'justify-items-end-safe': string;
            'justify-items-center': string;
            'justify-items-center-safe': string;
            'justify-items-stretch': string;
            'justify-items-normal': string;
        };
        justifySelf: {
            'justify-self-start': string;
            'justify-self-end': string;
            'justify-self-end-safe': string;
            'justify-self-center': string;
            'justify-self-center-safe': string;
            'justify-self-stretch': string;
            'justify-self-auto': string;
        };
        alignContent: {
            'content-normal': string;
            'content-start': string;
            'content-end': string;
            'content-center': string;
            'content-between': string;
            'content-around': string;
            'content-evenly': string;
            'content-stretch': string;
            'content-baseline': string;
        };
        alignItems: {
            'items-start': string;
            'items-end': string;
            'items-end-safe': string;
            'items-center': string;
            'items-center-safe': string;
            'items-stretch': string;
            'items-baseline': string;
            'items-baseline-last': string;
        };
        alignSelf: {
            'self-start': string;
            'self-end': string;
            'self-end-safe': string;
            'self-center': string;
            'self-center-safe': string;
            'self-stretch': string;
            'self-baseline': string;
            'self-baseline-last': string;
            'self-auto': string;
        };
        placeContent: {
            'place-content-start': string;
            'place-content-end': string;
            'place-content-end-safe': string;
            'place-content-center': string;
            'place-content-center-safe': string;
            'place-content-between': string;
            'place-content-around': string;
            'place-content-evenly': string;
            'place-content-stretch': string;
            'place-content-baseline': string;
        };
        placeItems: {
            'place-items-start': string;
            'place-items-end': string;
            'place-items-end-safe': string;
            'place-items-center': string;
            'place-items-center-safe': string;
            'place-items-stretch': string;
            'place-items-baseline': string;
        };
        placeSelf: {
            'place-self-start': string;
            'place-self-end': string;
            'place-self-end-safe': string;
            'place-self-center': string;
            'place-self-center-safe': string;
            'place-self-stretch': string;
            'place-self-auto': string;
        };
    };
};
