import * as React from 'react';
export interface Props extends React.HTMLAttributes<any> {
    as?: string;
    left?: number;
    right?: number;
    stack?: boolean;
}
export declare const FixedColumn: React.FC<Props>;
