import { type PropListSize } from "./PropListContext"; import { PropListItem } from "./PropListItem"; export type PropListProps = Readonly<{ children: React.ReactNode; /** Sets the row gap and the default size of the items. */ size?: PropListSize; }> & Omit, "children">; export declare function PropList({ children, size, className, ...rest }: PropListProps): import("react").JSX.Element; export declare namespace PropList { export { PropListItem as Item }; } //# sourceMappingURL=PropList.d.ts.map