UNPKG

@redocly/theme

Version:

Shared UI components lib

7 lines (6 loc) 201 B
export type UseControlReturnType = { isOpened: boolean; handleOpen: () => void; handleClose: () => void; }; export declare const useControl: (initialVal?: boolean) => UseControlReturnType;