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