/** * @returns true if input is 32 byte hex encoded string (0x prefix optional) */ export declare const isHexUuid: (input: string) => boolean; /** * @returns true if input is formatted as a UUID e.g. `12341234-1234-1234-1234-123412341234` */ export declare const isUuid: (uuid: string) => boolean; /** * @hidden * * converts a 32 character hex string into a UUID format e.g `12341234-1234-1234-1234-123412341234` */ export declare const hexToUuid: (input: string) => string; /** * @hidden * * converts a UUID into a 32 character, 0x prefixed, hex string e.g. `0x12341234123412341234123412341234` */ export declare const uuidToHex: (uuid: string) => string; export declare const isSnakeCase: (input: string) => boolean; export declare const startsWithCapital: (input: string) => boolean; //# sourceMappingURL=strings.d.ts.map