import type { TamaguiElement } from '@tamagui/core'; import { Slot } from '@tamagui/core'; import React from 'react'; type SlotProps = React.ComponentPropsWithoutRef; interface CollectionProps extends SlotProps { } declare function createCollection(name: string): readonly [{ readonly Provider: React.FC<{ children?: React.ReactNode; } & { scope?: any; }>; readonly Slot: React.ForwardRefExoticComponent>; readonly ItemSlot: React.ForwardRefExoticComponent & React.RefAttributes>; }, (scope: string) => () => ({ ref: React.RefObject; } & ItemData)[]]; export { createCollection }; export type { CollectionProps }; //# sourceMappingURL=Collection.d.ts.map