import * as React from "react";
export interface MatchChildProps {
    strict?: boolean;
    matchMedia?: string;
    only?: string;
}
declare type Element = React.ReactElement<MatchChildProps & any, string | React.ComponentType<MatchChildProps & any>> | null;
interface MatchProps {
    [key: string]: any;
    children: Element | Element[] | null;
    as?: string;
}
export declare const Match: React.FunctionComponent<MatchProps>;
export {};
