declare const matchPath: (matchPath: string, url: string, option: {
    sensitive?: boolean;
}) => {
    subMatch: boolean;
    offsetPath: string;
    params: {
        [key: string]: string;
    };
    match?: undefined;
} | {
    match: boolean;
    params: {
        [key: string]: string;
    };
    subMatch?: undefined;
    offsetPath?: undefined;
} | {
    params: {};
    subMatch?: undefined;
    offsetPath?: undefined;
    match?: undefined;
};
export { matchPath };
