import { FC, PropsWithChildren } from "react"; export declare type IBlockProviderProps = PropsWithChildren<{ /** * Default blocking state; "false" if not specified. */ locked?: boolean; }>; export declare const BlockProvider: FC;