declare const scrollbar: {
    'body *::-webkit-scrollbar': {
        width: string;
    };
    'body *::-webkit-scrollbar-track': {
        backgroundColor: string;
    };
    'body *::-webkit-scrollbar-thumb': {
        backgroundColor: string;
        borderRadius: string;
        border: string;
        backgroundClip: string;
        minHeight: string;
    };
    'body *::-webkit-scrollbar-button': {
        display: string;
    };
    'body *::-webkit-scrollbar-corner': {
        backgroundColor: string;
    };
    'body *::-webkit-resizer': {
        backgroundImage: string;
        backgroundSize: string;
    };
    'body *': {
        scrollbarWidth: string;
        scrollbarColor: string;
    };
};
export default scrollbar;
