/// <reference types="react" />
import { FormComponentProps } from '@tomino/dynamic-form';
declare type Props = {
    items: {
        label: string;
        source: string;
        type: string;
    }[];
};
export declare const Tuple: (componentProps: FormComponentProps<Props, any, any>) => JSX.Element;
export {};
