import type { ReactNode, Ref } from 'react'; import type { BaseProps, ForwardRefForwardPropsComponent } from '../../types'; export interface CommaSeparatedListProps extends BaseProps { /** List content. */ items: ReactNode[]; /** List Heading. */ heading?: string; /** Ref forwarded to the wrapping element. */ ref?: Ref; } export declare const StyledCommaSeparatedList: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit, HTMLDivElement>, never>> & string; export declare const StyledCommaSeparatedListItem: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit, HTMLLIElement>, never>> & string; declare const CommaSeparatedList: ForwardRefForwardPropsComponent; export default CommaSeparatedList; //# sourceMappingURL=CommaSeparatedList.d.ts.map