import * as React from 'react'; import { StandardProps } from '../../common'; export interface ListProps extends StandardProps { /** * Index of the active item. */ activeItem?: number; /** * The content of the component. */ children?: React.ReactNode; /** * Switches the default to render a border on each list item. */ borderless?: boolean; /** * If `true`, padding will be removed from the children list. * Used to remove padding from the child components. */ disablePadding?: boolean; /** * Shows the given bullet style. * @default 'none' */ bullets?: 'none' | 'disc' | 'square'; } /** * General purpose list component which can be used for rendering list items. */ export declare const List: React.SFC & { inner: { readonly StyledList: any; }; };