import { EventEmitter } from '../../stencil-public-runtime'; export declare class PaycargoDialog { /** * Text displayed in the dialog heading. */ dialogTitle: string; /** * Label for the confirm action button. */ confirmLabel: string; /** * Label for the cancel action button. */ cancelLabel: string; /** * Visual variant for the confirm button. * 'save' renders a blue button; 'delete' renders a red button. */ confirmVariant: 'save' | 'delete'; /** * When true, disables the confirm button and shows a loading spinner in its place. */ isProcessing: boolean; /** * Fired when the user clicks the confirm action button. */ dialogConfirm: EventEmitter; /** * Fired when the user clicks the cancel button or the overlay backdrop. */ dialogCancel: EventEmitter; render(): any; }