/**
 * Modify from https://github.com/ionic-team/stencil-ds-output-targets/blob/main/packages/react-output-target/react-component-lib/utils/case.ts
 * MIT License https://github.com/ionic-team/stencil-ds-output-targets/blob/main/LICENSE
 */
declare const dashToPascalCase: (str: string) => string;
declare const camelToDashCase: (str: string) => string;
export { dashToPascalCase, camelToDashCase };
