@fluster.io/dev
Version:
19 lines (18 loc) • 625 B
TypeScript
import { ReactNode } from 'react';
import { FormInputProps } from '../../types';
import { FieldValues } from 'react-hook-form';
interface SyntaxSupportedLanguageSelectProps<T extends FieldValues> extends FormInputProps<T> {
classes?: {
button?: string;
popover?: string;
commandItem?: string;
popoverContainer?: string;
commandInput?: string;
label?: string;
};
}
export declare const SyntaxSupportedLanguageSelect: {
<T extends FieldValues>({ form, name, label, classes, }: SyntaxSupportedLanguageSelectProps<T>): ReactNode;
displayName: string;
};
export {};