import { ComponentInterface } from "../../stencil-public-runtime"; import { DuetMargin } from "../../common-types"; import { DuetBreakpoints } from "../../utils/token-utils"; export declare class DuetSectionLayout implements ComponentInterface { /** * Reference to host HTML element. */ element: HTMLElement; /** * Controls the margin of the component. */ margin: DuetMargin; /** * Align container vertically in the middle when the space allows it. */ middle: boolean; /** * Breakpoint used to remove padding. These match to * similar media query tokens: $media-query-small and $media-query-medium. */ paddingBreakpoint?: DuetBreakpoints; /** * render() function. * Always the last one in the class. */ render(): any; }