/** * @deprecated this hides scrollbar in modern browsers - use `scrollbarStyleThin` instead if you want a scrollbar */ export declare const scrollbarStyle: { "*::-webkit-scrollbar-track": { backgroundColor: string; }; "*::-webkit-scrollbar-corner": { backgroundColor: string; }; "*::-webkit-scrollbar": { width: number; height: number; }; "*::-webkit-scrollbar-thumb": { backgroundColor: string; borderRadius: string; border: string; borderColor: string; }; "*": { scrollbarWidth: string; /** hides scrollbar */ }; scrollbarWidth: string; /** hides scrollbar */ }; /** use where you actually want to see a scrollbar in modern browsers */ export declare const scrollbarStyleThin: { "*": { "scrollbar-width": string; "scrollbar-color": string; }; "scrollbar-width": string; "scrollbar-color": string; };