export declare type IRowComponentProps = IRowProps & IRowStyledProps;
export interface IRowProps {
    items: any[];
}
export interface IRowStyledProps {
    numberOfColumns: number;
}
export interface IStyledColumnProps {
}
