import * as React from "react"; import * as react_jsx_runtime13 from "react/jsx-runtime"; import { VariantProps } from "class-variance-authority"; import * as class_variance_authority_types2 from "class-variance-authority/types"; //#region src/components/atoms/DataChips.d.ts declare const chip: (props?: ({ size?: "sm" | "md" | null | undefined; tone?: "default" | "muted" | null | undefined; } & class_variance_authority_types2.ClassProp) | undefined) => string; type ChipVariants = VariantProps; declare function DateChip({ value, ...v }: { value?: string | Date | null; } & ChipVariants): react_jsx_runtime13.JSX.Element | null; declare function TimeChip({ value, ...v }: { value?: string | Date | null; } & ChipVariants): react_jsx_runtime13.JSX.Element | null; declare function PlaceChip({ label, ...v }: { label?: React.ReactNode; } & ChipVariants): react_jsx_runtime13.JSX.Element | null; declare function DurationChip({ minutes, ...v }: { minutes?: number | null; } & ChipVariants): react_jsx_runtime13.JSX.Element | null; //#endregion export { DateChip, DurationChip, PlaceChip, TimeChip }; //# sourceMappingURL=DataChips.d.ts.map