export declare const svgBaseProps: { width: string; height: string; fill: string; 'aria-hidden': string; focusable: string; }; export declare const iconStyles = "\n.whaleicon {\n display: inline-block;\n color: inherit;\n font-style: normal;\n line-height: 0;\n text-align: center;\n text-transform: none;\n vertical-align: -0.125em;\n text-rendering: optimizeLegibility;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n}\n\n.whaleicon > * {\n line-height: 1;\n}\n\n.whaleicon svg {\n display: inline-block;\n}\n\n.whaleicon::before {\n display: none;\n}\n\n.whaleicon .whaleicon-icon {\n display: block;\n}\n\n.whaleicon[tabindex] {\n cursor: pointer;\n}\n\n.whaleicon-spin::before,\n.whaleicon-spin {\n display: inline-block;\n -webkit-animation: loadingCircle 1s infinite linear;\n animation: loadingCircle 1s infinite linear;\n}\n\n@-webkit-keyframes loadingCircle {\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n\n@keyframes loadingCircle {\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n"; export declare const useInsertStyles: (styleStr?: string) => void;