///
import { BoxProps } from '../Box';
export declare type LocalListProps = {
/** Indicates if the list is ordered. */
isOrdered?: boolean;
/** Indicates the orientation of the list. */
orientation?: 'horizontal' | 'vertical';
};
export declare type ListProps = BoxProps & LocalListProps;
export declare const List: import("react").ForwardRefExoticComponent & import("react").RefAttributes> & {
displayName?: string;
useProps: (props?: Partial, config?: {
disableCSSProps?: string[];
themeKey?: string;
}) => any;
};