import { type Slots } from 'vue';
export declare function useSlotKeys(slots: Slots, prefix: string, filterPrefix?: string): {
    getSlotKeys: import("vue").ComputedRef<string[]>;
    replaceSlotKey: (key: string) => string;
};
