import { LayoutOptions, Breakpoint } from './const/defaultOptions'; declare class Layout { options: LayoutOptions; protected isConfigureCalled: boolean; constructor(options: Partial); /** * Applies global layout options. */ configure(options: Partial, warnOnMultiple?: boolean): this; /** * Returns the collection of breakpoint names present * in the current layout configuration. */ getBreakpointNames(): string[]; /** * Returns breakpoint options by the given breakpoint name. */ getBreakpoint(breakpointName: string): Breakpoint | undefined; } declare const _default: Layout; export default _default;