import React from "react"; import { MetaProps } from "src/types"; type LabelTemplatePropTypes = { readonly input: any; readonly label: string; readonly tabIndex?: string; readonly offset?: string; readonly meta: MetaProps; }; export declare const OldLabelTemplate: (props: LabelTemplatePropTypes) => React.JSX.Element; export {};