UNPKG

@trussworks/react-uswds

Version:
8 lines (7 loc) 287 B
import { default as React } from 'react'; export type ModalHook = { isOpen: boolean; toggleModal: (e?: React.MouseEvent, open?: boolean) => boolean; }; export declare const useModal: (isInitiallyOpen?: boolean) => ModalHook; export declare const getScrollbarWidth: () => string;