UNPKG

@jiin.seok/formkit-react

Version:

A powerful React form library with Compound Component Pattern, built-in validation, and TypeScript support

23 lines 1.72 kB
import * as SelectPrimitive from '@radix-ui/react-select'; import * as React from 'react'; export declare function Select({ ...props }: React.ComponentProps<typeof SelectPrimitive.Root>): import("react/jsx-runtime").JSX.Element; export declare function SelectGroup({ ...props }: React.ComponentProps<typeof SelectPrimitive.Group>): import("react/jsx-runtime").JSX.Element; export declare function SelectValue({ ...props }: React.ComponentProps<typeof SelectPrimitive.Value>): import("react/jsx-runtime").JSX.Element; export declare function SelectTrigger({ className, size, children, ...props }: React.ComponentProps<typeof SelectPrimitive.Trigger> & { size?: 'sm' | 'default'; }): import("react/jsx-runtime").JSX.Element; export declare function SelectContent({ className, children, position, ...props }: React.ComponentProps<typeof SelectPrimitive.Content>): import("react/jsx-runtime").JSX.Element; export declare function SelectLabel({ className, ...props }: React.ComponentProps<typeof SelectPrimitive.Label>): import("react/jsx-runtime").JSX.Element; export declare function SelectItem({ className, children, ...props }: React.ComponentProps<typeof SelectPrimitive.Item>): import("react/jsx-runtime").JSX.Element; export declare function SelectSeparator({ className, ...props }: React.ComponentProps<typeof SelectPrimitive.Separator>): import("react/jsx-runtime").JSX.Element; export declare const SelectKit: { Root: typeof Select; Group: typeof SelectGroup; Value: typeof SelectValue; Trigger: typeof SelectTrigger; Content: typeof SelectContent; Label: typeof SelectLabel; Item: typeof SelectItem; Separator: typeof SelectSeparator; }; //# sourceMappingURL=Select.d.ts.map