import { FunctionComponent, PropsWithChildren } from 'react'; import { FieldProps } from '../../models/typings'; import { OneOfSchemas } from '../../utils/get-oneof-schema-list'; interface SchemaList extends FieldProps { selectedSchema: OneOfSchemas | undefined; schemas: OneOfSchemas[]; onChange: (schema: OneOfSchemas | undefined) => void; onCleanInput?: () => void; placeholder?: string; } export declare const SchemaList: FunctionComponent>; export {}; //# sourceMappingURL=SchemaList.d.ts.map