import { ResetFormType } from "../enums/reset-type"; export declare function isResetControl(controlName: string, control: any, options?: { resetType?: ResetFormType; with?: string[]; value?: { [key: string]: any; }; }): boolean; export declare function getNestedOptions(controlName: string, options?: { resetType?: ResetFormType; with?: string[]; value?: { [key: string]: any; }; }): { resetType?: ResetFormType; with?: string[]; value?: { [key: string]: any; }; };