export declare function isRelativePath(p: string): boolean;
export declare function normalizeRelativePathForNode(relativePath: string): string;
export declare function toInitialUppercased(name: string): string;
export declare function toInitalLowercased(name: string): string;
export declare function toUppercaseSnaked(name: string): string;
export declare function joinArray(statements: Array<string>, prefix: string, suffix: string): string;
export declare function toUnixPath(originalPath?: string): string;
