export declare const colors: { contextMenuBackground: string; contextMenuItemBorder: string; defaultButton: string; redButton: string; buttonBorder: string; text: string; selectedText: string; loadingScreenBG: string; dashboardBG: string; centerMenuBackground: string; centerMenu: string; centerMenuBorder: string; inputBG: string; inputText: string; focussedInput: string; focussedInputBorder: string; unfocussedInput: string; unfocussedInputLabel: string; angryInput: string; angryInputBorder: string; happyInput: string; happyInputBorder: string; labelledItemsItems: string; notificationSuccess: string; notificationFailure: string; checkBoxBorder: string; checkBoxHighlightCenter: string; checkBoxHighlightEdge: string; scrollbarBackground: string; scrollbarThumb: string; navbarBackground: string; dataTableEvenRow: string; dataTableOddRow: string; boxShadow: string; switchLine: string; switchOn: string; switchOff: string; topbarBG: string; circleFill: string; circleStroke: string; dropdownBG: string; }; export declare function setCustomColors(customColors: Partial): void; export declare const sizes: { text: { large: string; medium: string; small: string; xsmall: string; xxsmall: string; }; contextMenu: { maxHeight: string; maxWidth: string; }; button: { margin: string; padding: string; }; switch: { diameter: number; textPadding: string; borderRadius: string; switchMargin: string; }; checkBox: { size: number; checkDif: number; highlightDif: number; }; labelledItems: { itemsPadding: string; labelPadding: string; margin: string; padding: string; borderRadius: string; }; dataTable: { colGap: string; rowGap: string; itemMargin: string; rowBGMargin: string; }; label: { titleMargin: string; searchMargin: string; searchMinWidth: string; searchMaxWidth: string; }; centerMenu: { maxWidth: string; minWidth: string; maxHeight: string; minHeight: string; }; grid: { itemMinWidth: string; }; page: { itemMinWidth: string; flexPageMargin: string; animationHeight: number; }; borderRadius: { large: string; medium: string; small: string; largeUpperRight: string; largeLowerRight: string; mediumUpperRight: string; mediumLoweright: string; }; }; declare type CustomSizes = { text?: Partial; contextMenu?: Partial; button?: Partial; switch?: Partial; checkBox?: Partial; labelledItems?: Partial; dataTable?: Partial; label?: Partial; centerMenu?: Partial; grid?: Partial; page?: Partial; borderRadius?: Partial; }; export declare function setCustomSizes(customSizes: CustomSizes): void; export declare const zIndex: { contextMenu: number; centerMenu: number; notification: number; loadingScreen: number; }; export declare function setCustomZIndices(customZIndices: Partial): void; export declare const springConfig: { fast: { tension: number; friction: number; }; medium: { tension: number; velocity: number; friction: number; }; slow: { tension: number; friction: number; mass: number; }; xslow: { tension: number; friction: number; mass: number; clamp: boolean; }; }; declare type CustomSpringConfig = { fast?: Partial; medium?: Partial; slow?: Partial; xslow?: Partial; }; export declare function setCustomSpringConfig(customSpringConfig: CustomSpringConfig): void; export declare const scrollbarJSS: { regular: { '&::-webkit-scrollbar': { width: string; }; '&::-webkit-scrollbar-track': { background: string; }; '&::-webkit-scrollbar-thumb': { background: string; borderRadius: string; }; scrollbarWidth: string; scrollbarColor: string; }; thin: { '&::-webkit-scrollbar': { width: string; }; '&::-webkit-scrollbar-track': { background: string; }; '&::-webkit-scrollbar-thumb': { background: string; borderRadius: string; }; scrollbarWidth: string; scrollbarColor: string; }; none: { '&::-webkit-scrollbar': { width: string; }; '&::-webkit-scrollbar-track': { background: string; }; '&::-webkit-scrollbar-thumb': { background: string; borderRadius: string; }; scrollbarWidth: string; scrollbarColor: string; }; }; declare type CustomScrollbarJSS = { regular?: Partial; thin?: Partial; none?: Partial; }; export declare function setCustomScrollbarJSS(customJSS: CustomScrollbarJSS): void; export declare const useScrollbarJSS: (data?: unknown) => Record<"Scroller", string>; export {};