import type { BaseCardComponent } from './baseCardComponent';
/**
 * Adaptive Card Extension Text component. Represents a text block rendered in the card view.
 */
export interface CardTextComponent extends BaseCardComponent {
    /**
     * Unique component name.
     */
    componentName: 'text';
    /**
     * Text to display.
     */
    text: string;
}
//# sourceMappingURL=cardTextComponent.d.ts.map