import type { ReactNode, Ref } from 'react'; import type { BaseProps, ForwardRefForwardPropsComponent, NoChildrenProp, TestIdProp } from '../../types'; export interface MetaListProps extends BaseProps, NoChildrenProp, TestIdProp { /** Array of nodes or text to be rendered in the list. */ items: ReactNode[]; /** * If true, MetaList items that extend past the MetaList's container will wrap to a new line. * @default true */ wrapItems?: boolean; /** Ref for the wrapping element. */ ref?: Ref; } export declare const StyledMetaList: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute, HTMLUListElement>, { wrapItems: boolean; }>> & string; export declare const StyledMetaListItem: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute, HTMLLIElement>, { wrapItems: boolean; }>> & string; declare const _default: ForwardRefForwardPropsComponent & { getTestIds: (testIdProp?: TestIdProp["testId"]) => import("../../types").TestIdsRecord; }; export default _default; //# sourceMappingURL=MetaList.d.ts.map