/**
 * @name limitLines
 * @description limit lines of text
 * @param lines
 */
export declare const limitLines: (lines: number) => {
    overflow: string;
    textOverflow: string;
    display: string;
    WebkitLineClamp: string;
    WebkitBoxOrient: string;
};
export declare const limitOneLine: {
    overflow: string;
    textOverflow: string;
    whiteSpace: string;
};
export declare const responsiveMenuStyle: {
    top: {
        xs: number;
        sm: string;
    };
    left: number;
    width: {
        xs: string;
        sm: number;
    };
    height: {
        xs: string;
        sm: string;
    };
    maxHeight: {
        xs: string;
        sm: string;
    };
    maxWidth: string;
    borderRadius: {
        xs: number;
        sm: number;
    };
    overflowY: string;
};
