/**
 * A function that will apply global hidden scrollbar styles
 * @description - Set global scrollbar styles
 */
export declare const setGlobalHiddenScrollbarStyle: () => void;
/**
 * A hidden scrollbar styles
 */
export declare const HiddenScrollbarStyle: {
    '&::-webkit-scrollbar': {
        width: string;
        overflow: string;
        display: string;
    };
    '&::-webkit-scrollbar-track': {
        background: string;
    };
    '&::-webkit-scrollbar-thumb': {
        background: string;
        borderRadius: string;
    };
    '&::-webkit-scrollbar-thumb:hover': {
        background: string;
    };
    '&::-webkit-scrollbar-corner': {
        background: string;
    };
};
