/**
 * @selector mdc-layout-grid-cell
 */
export declare class MdcLayoutGridCell {
    /** Optional, specifies the order of the cell */
    order: string;
    /** Optional, specifies the alignment of cell */
    position: 'top' | 'middle' | 'bottom';
    /** Optional, specifies the number of columns the cell spans */
    span: string;
    /** Optional, specifies the number of columns the cell spans on a desktop */
    desktopSpan: string;
    /** Optional, specifies the number of columns the cell spans on a tablet */
    tabletSpan: string;
    /** Optional, specifies the number of columns the cell spans on a phone */
    phoneSpan: string;
    newRow: string;
    /** Optional, specifies the number of columns the cell spans for all screen sizes */
    spans: string;
    spansChanged(): void;
}
