import { type VariantProps } from "class-variance-authority"; export type ListChoiceTileIndicatorProps = React.ComponentPropsWithoutRef<"span"> & { multiSelect?: boolean; }; export type ListChoiceTileProps = React.ComponentPropsWithoutRef<"label"> & VariantProps & { label: string; description?: string; icon?: React.FC>; }; declare const listChoiceTileVariants: (props?: ({ selected?: boolean | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; export declare const ListChoiceTile: ({ label, icon: Icon, description, selected, className, children, ...props }: ListChoiceTileProps) => import("react").JSX.Element; export {}; //# sourceMappingURL=ListChoiceTile.d.ts.map