import type { APIBaseComponent, ComponentType } from '../types'; export declare abstract class BaseComponentBuilder> = APIBaseComponent> { data: Partial; constructor(data?: Partial); toJSON(): TYPE; } export type OptionValuesLength = { max: number; min: number; };