import { ReactNode } from 'react'; export interface StaticStyleRouterProps { children: ReactNode; color: 'dark' | 'light'; breakpoint: string; } export declare function StaticStyleRouter({ children, color, breakpoint, }: StaticStyleRouterProps): JSX.Element;