import { AssertString, KebabCase } from '@zurich/dev-utils/typescript'; declare const skipProps: readonly ["slotted", "content"]; type SkipProps = (typeof skipProps)[number]; /** */ export declare function toKebabProps>(props: T): { [K in keyof Omit as KebabCase>]: T[K]; }; export {};