export declare class GovRow {
    align: 'start' | 'center' | 'end' | 'stretch' | 'baseline';
    justify: 'start' | 'center' | 'end' | 'between' | 'around' | 'evenly';
    gap: string;
    reverse: boolean;
    classes: string;
    styles: {
        [key: string]: string;
    };
    render(): any;
}
