import React, { ReactNode } from "react"; type FinsembleCssType = { dialog?: boolean; children?: ReactNode; }; /** * A component for dynamically loading and unloading the finsemble css. This component can be composed into * a template in order to instantiate the styles, as opposed to importing them directly. * * We use dynamic loading because if we were to import the CSS directly then the styles would be injected * at module load time, and since the module is included in index.ts, this would mean that the styles would * _always_ be injected, regardless of whether a developer actually used the component or not. * * @param param.dialog Set to true when the component is a dialog so that dialogs.css will also be loaded, such as the authentication component. */ export declare const FinsembleCSS: ({ dialog }: FinsembleCssType) => React.JSX.Element; export {}; //# sourceMappingURL=FinsembleCSS.d.ts.map