export declare type FlyyerPath = string | number | null | undefined | (string | number | null | undefined)[];
/**
 * Convert path or array of path parts to a string.
 */
export declare function normalizePath(path?: FlyyerPath): string;
