/**



*/
import * as React from 'react';
declare type Option = {
    value: string;
    label: string;
};
export interface ReferenceFieldProps {
    label?: string;
    name: string;
    component: string;
    collections: string[];
    options: (Option | string)[];
}
export interface ReferenceProps {
    name: string;
    input: any;
    field: ReferenceFieldProps;
    disabled?: boolean;
    options?: (Option | string)[];
}
export declare const Reference: React.FC<ReferenceProps>;
export {};
