UNPKG

@sanity/form-builder

Version:
12 lines 468 B
import React, { ComponentProps, MutableRefObject } from 'react'; import { Button } from '@sanity/ui'; import { CreateOption } from './types'; interface Props extends ComponentProps<typeof Button> { id: string; createOptions: CreateOption[]; menuRef: MutableRefObject<HTMLDivElement>; onCreate: (option: CreateOption) => void; } export declare function CreateButton(props: Props): React.JSX.Element; export {}; //# sourceMappingURL=CreateButton.d.ts.map