/** * @typedef StyleFrameProviderProps * @property {import('react').ReactNode} children Children elements to render. */ /** * A special Provider designed specifically for iFrame usage. * Components using `@wp-g2/styled` that render within will have their * styles injected and rendered correctly within the iFrame out-of-the-box. * * No external stylesheet loading is necessary when using . * * @example * ```jsx * * * * * * ``` * * @param {StyleFrameProviderProps} props Props for the Provider. */ export function StyleFrameProvider({ children }: StyleFrameProviderProps): JSX.Element; export type StyleFrameProviderProps = { /** * Children elements to render. */ children: import('react').ReactNode; }; //# sourceMappingURL=style-frame-provider.d.ts.map