diff --git a/node_modules/react-aria-components/dist/types.d.ts b/node_modules/react-aria-components/dist/types.d.ts index eb908b4..6cd530f 100644 --- a/node_modules/react-aria-components/dist/types.d.ts +++ b/node_modules/react-aria-components/dist/types.d.ts @@ -44,7 +44,7 @@ interface SlotProps { /** A slot name for the component. Slots allow the component to receive props from a parent component. */ slot?: string; } -export function useContextProps(props: T & SlotProps, ref: React.ForwardedRef, context: React.Context>): [T, React.RefObject]; +export function useContextProps(props: T & SlotProps, ref: React.ForwardedRef, context: React.Context>): [T, React.RefObject]; interface CollectionProps extends Omit, 'children'> { /** The contents of the collection. */ children?: ReactNode | ((item: T) => ReactElement);