import { Layout, Pane } from '../core';
import { Color } from '../color';
export interface Insets {
    top: number;
    right: number;
    bottom: number;
    left: number;
}
export declare function newInsets(...insets: number[]): Insets;
export declare function newInsetLayout(insets: Insets): Layout;
export declare function newInsetPane(pane: Pane, insets: Insets, bgColor?: Color, consumeInputEvents?: boolean): Pane;
