/// interface ServerTargetProps { /** @defaultValue 'div' */ tag?: keyof JSX.IntrinsicElements; /** id of target element if you are applying theme only to specific container. * make sure you pass same targetId to corresponding `ThemeSwitcher`, `ColorSwitch` and `useTheme` hook as well. * @defaultValue undefined*/ targetId?: string; /** provide styles object if you are using CSS/SCSS modules. */ styles?: Record; } /** * Server Side target for avoiding flash of un-themed content. * @example * ```tsx * * ... * * * ... * * * ``` */ export declare function ServerTarget({ tag, targetId, styles }: ServerTargetProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=server-target.d.ts.map