import { ValidateOptions, ValidateType } from './Validation';
export declare type TransformFunction = (input: string) => any;
export interface ParsedOptions {
    index?: number;
    header?: string;
    map?: TransformFunction;
    validate?: ValidateType | ValidateType[] | ValidateOptions;
}
export default function Parsed(options: ParsedOptions | number | string): (object: Object, propertyName: string) => void;
