import { ReactNode } from 'react'; import { SlotMap, SlotMapOptions } from './SlotMap'; export interface UseSlotsProps { children?: ReactNode; } export declare function useSlots(props: UseSlotsProps, options?: SlotMapOptions): SlotMap;