export type SelectionState = "unselected" | "selected" | "mixed"; export type SizeListItemProps = { label: string; subtitle?: string; leading: React.ReactElement; selectionState?: SelectionState; } & Omit, "children"> & React.RefAttributes; export declare function SizeListItem({ label, subtitle, leading, selectionState, disabled, className, ref, ...props }: SizeListItemProps): import("react").JSX.Element; export declare namespace SizeListItem { var displayName: string; } //# sourceMappingURL=SizeListItem.d.ts.map