export declare class PrintableJqueryControl { /** * Print a div with title * @param element selector div want to print * @param title title of output file */ printContent(element: string, title: string): void; /** * Set value for controls on form, make it display current value when print * @param element selector input */ formatFormElement(element: any): string; }