import type { ExtractPropTypes, SlotsType } from 'vue'; export declare const longTextProps: { text: { type: StringConstructor; }; rows: { type: (NumberConstructor | StringConstructor)[]; default: number; }; maxWidth: { type: (NumberConstructor | StringConstructor)[]; default: number; }; maxHeight: { type: (NumberConstructor | StringConstructor)[]; default: number; }; }; export type LongTextProps = ExtractPropTypes; export interface LongTextSlots { default: {}; } export declare const longTextSlots: SlotsType;