blowfish/node_modules/@headlessui/react/dist/internal/stack-context.d.ts
2023-01-29 22:30:24 +00:00

15 lines
548 B
TypeScript

import { MutableRefObject, ReactNode } from 'react';
declare type OnUpdate = (message: StackMessage, type: string, element: MutableRefObject<HTMLElement | null>) => void;
export declare enum StackMessage {
Add = 0,
Remove = 1
}
export declare function useStackContext(): OnUpdate;
export declare function StackProvider({ children, onUpdate, type, element, enabled, }: {
children: ReactNode;
onUpdate?: OnUpdate;
type: string;
element: MutableRefObject<HTMLElement | null>;
enabled?: boolean;
}): JSX.Element;
export {};