import React from 'react'; import { type ElementProps } from '../../../types/element/elementProps'; import { type FlexProps } from '../../layout/Flex'; export type InfoListOwnProps = { gap?: FlexProps<'section'>['gap']; }; export type InfoListProps = React.PropsWithChildren>; export declare const InfoList: React.ForwardRefExoticComponent, HTMLElement>, "ref">, "children">, "gap"> & InfoListOwnProps & { children?: React.ReactNode; } & React.RefAttributes>; //# sourceMappingURL=InfoList.d.ts.map