import type React from "react"; import type { DefaultNDSThemeType } from "../theme"; type GlobalStylesComposerProps = { theme?: DefaultNDSThemeType; locale?: string; disableGlobalStyles?: boolean; children?: React.ReactNode; }; export default function GlobalStylesComposer({ theme, locale, disableGlobalStyles, children, }: GlobalStylesComposerProps): import("react/jsx-runtime").JSX.Element; export {};