import { QUERIES } from "../../utils/mediaQuery/consts";
export declare enum JUSTIFY {
    START = "start",
    CENTER = "center",
    END = "end",
    BETWEEN = "between",
    AROUND = "around"
}
export declare const justifyClasses: {
    [K in QUERIES | JUSTIFY]: K extends QUERIES ? Record<JUSTIFY, string> : string;
};
export declare const getJustifyClasses: (justify: `${JUSTIFY}`, viewport?: QUERIES) => string;
export default getJustifyClasses;
