import { default as Swappable } from '../core'; export interface ResponsiveBreakpoint { breakpoint: number; items: number; } export interface AutoResponsiveLayoutPluginOptions { breakpoints: ResponsiveBreakpoint[]; } export interface SwappableWithAutoResponsiveLayout extends Swappable { destroyResponsiveLayout: () => void; } export declare function withAutoResponsiveLayout(instance: Swappable, options: AutoResponsiveLayoutPluginOptions): SwappableWithAutoResponsiveLayout;