import { ComponentInterface } from '../../stencil-public-runtime'; export declare class Grid implements ComponentInterface { /** * If `true`, the grid will have a fixed width based on the screen size. */ fixed: boolean; hostData(): { class: { 'grid-fixed': boolean; }; }; render(): any; }