import { Theme } from "./types/local"; /** * Creates a global style by injecting CSS into the document's head. * * @param {TemplateStringsArray} strings - The static parts of the template literal. * @param {...any} interpolations - The dynamic values to be interpolated into the CSS. * @returns {() => React.FC} A function that returns a React component to apply global styles. * * @example * const GlobalStyle = createGlobalStyle` * body { * margin: 0; * padding: 0; * background-color: ${(props) => props.theme.backgroundColor}; * } * `; */ declare const createGlobalStyle: (strings: TemplateStringsArray, ...interpolations: Array<(props: { theme: Theme; }) => any | string>) => () => import("react/jsx-runtime").JSX.Element; export default createGlobalStyle; //# sourceMappingURL=createGlobalStyle.d.ts.map