import * as Checkbox from "@radix-ui/react-checkbox"; import React from "react"; import { ListChoiceTileProps } from "../ListChoiceTile"; export type ListChoiceMultipleExpandTileProps = Checkbox.CheckboxProps & { onToggleCb?: (isExpanded: boolean) => void; } & Pick & React.RefAttributes; export declare function ListChoiceMultipleExpandTile({ label, icon, description, className, children, onToggleCb, ref, ...props }: ListChoiceMultipleExpandTileProps): React.JSX.Element; export declare namespace ListChoiceMultipleExpandTile { var displayName: string; } //# sourceMappingURL=ListChoiceMultipleExpandTile.d.ts.map