export function Fill(props: any): JSX.Element;
export function Provider({ children, ...props }: {
    [x: string]: any;
    children: any;
}): JSX.Element;
export function createSlotFill(key: any): {
    Fill: {
        (props: any): JSX.Element;
        displayName: string;
    };
    Slot: {
        (props: any): JSX.Element;
        displayName: string;
        __unstableName: any;
    };
};
export { default as useSlot } from "./bubbles-virtually/use-slot";
export { default as useSlotFills } from "./bubbles-virtually/use-slot-fills";
export const Slot: import("react").ForwardRefExoticComponent<import("react").RefAttributes<any>>;
export function createPrivateSlotFill(name: any): {
    Fill: {
        (props: any): JSX.Element;
        displayName: string;
    };
    Slot: {
        (props: any): JSX.Element;
        displayName: string;
        __unstableName: any;
    };
    privateKey: symbol;
};
//# sourceMappingURL=index.d.ts.map