import * as i0 from "@angular/core"; export declare class CsvExportComponent { /** Header of the CSV, titles for each columns */ headers: string[]; /** Array of each rows (array of array of string), if it's not set, then the function getRows() will be used */ rowsInput: string[][]; /** Function used to get rows if rowsInput is not set, call each time the user click on the button to generate the CSV file */ getRows: any; /** Title of the file to download */ title: string; /** Label for the button to click */ buttonLabel: string; /** Delimiter for the CSV */ delimeter: string; onClickDownload(): Promise; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }