import { Breakpoint as MUIBreakpoint } from "@material-ui/core/styles/createBreakpoints"; export interface IUseViewStateOptions { mobile?: MUIBreakpoint; tablet?: MUIBreakpoint; } export interface IViewState { mobile: boolean; tablet: boolean; } export declare const DEFAULT_RESPONSIVE_VIEWS: IViewState; /** * Hook to get view state (mobile / tablet) * @param options the options to setup view definition (overrides MUI mobile / tablet breakpoints) */ declare const useViewState: (options?: IUseViewStateOptions) => IViewState; export default useViewState;