import { ICellRendererParams } from 'ag-grid-enterprise'; import { MaskIconName16 } from '@milaboratories/uikit'; type __VLS_Props = { params: ICellRendererParams & { /** * Button icon MaskIconName16 */ icon?: MaskIconName16; /** * Button label */ btnLabel?: string; /** * If invokeRowsOnDoubleClick = true, clicking a button inside the row * triggers the doubleClick event for the entire row. In this case, * the handler passed to the component is not called, even if it is defined. * * If invokeRowsOnDoubleClick = false, the doubleClick event for the row * is not triggered, but the provided handler will be called, receiving * the ICellRendererParams as an argument. */ invokeRowsOnDoubleClick?: boolean; /** * plHandler parameter is a click handler that is invoked when * the invokeRowsOnDoubleClick property is set to false. */ onClick?: (params: ICellRendererParams) => void; }; }; declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>; export default _default; //# sourceMappingURL=PlAgTextAndButtonCell.vue.d.ts.map