import React from 'react';
import { ISurface } from '../Surface/Surface';
import { ISize, IElement } from '../types';
export interface IList extends ISurface {
    size?: ISize;
    menu?: IElement;
    menuOpen?: boolean;
    noMaxWidth?: boolean;
    noChildrenTransform?: boolean;
    indent?: number;
    paddingHorizontal?: 'both' | 'start' | 'end' | 'none';
    paddingVertical?: 'both' | 'start' | 'end' | 'none';
    noBackground?: boolean;
    SurfaceProps?: any;
}
declare const List: React.FC<IList>;
export default List;
