import { ReactNode } from 'react'; export interface StyleRouteProps { children: ReactNode; matchColor?: string | string[]; matchBreakpoint?: string | string[]; } export declare function StyleRoute({ children, matchColor, matchBreakpoint, }: StyleRouteProps): JSX.Element | null;