export type SlotMapper = (slotName: string) => string; export declare const isSlotProperty: (key: string, slotPrefix?: string) => boolean; export declare const stripSlotPrefix: (key: string, slotPrefix?: string) => string; export declare const toKebabSlot: (key: string, slotPrefix?: string) => string; export declare function replaceSlotsInString(code: string, mapper: SlotMapper): string;