import React from 'react';
import { InputProps, ObjectInputProps } from 'sanity';
import { Timespan } from './types';
export type TimespanInputCallbackProps = Omit<InputProps, 'renderDefault'>;
export type TimespanInputProps = ObjectInputProps<Timespan>;
export declare function TimespanInput(props: Readonly<ObjectInputProps>): React.JSX.Element;
