export declare const pascal: (s: string) => string; export declare const camel: (s: string) => string; export declare const snake: (s: string) => string; export declare const kebab: (s: string) => string; export declare const upper: (s: string, fillWith?: string, isDeapostrophe?: boolean) => string;