export interface IOptions { decode?: boolean; decodeMethod?: (value: string) => string; } declare const castParam: (value: any, options_?: IOptions) => any; export default castParam;