/// import type { MatchProps, MatchPropsArray } from "./types"; type MatchElementProps = MatchProps | MatchPropsArray; export declare function Match(props: MatchPropsArray): React.ReactNode; export declare function Match(props: MatchProps): React.ReactNode; export declare const isMatchElement: (child: React.ReactNode) => child is import("react").ReactElement>; export {};