/**
 * Replacement for `path.extname`, with the difference that it supports windows or posix style paths consistently.
 * For same behaviour as `path.posix` set `strictPosix` to `true`.
 */
export declare function extname(path: string, strictPosix?: boolean): string;
