import { InputBuilder } from "./InputBuilder"; export declare class ImageInputBuilder extends InputBuilder { /** * {@inheritDoc} */ boot(): void; /** * Set image width for that must be uploaded */ width(width: number): this; /** * Set image height for that must be uploaded */ height(height: number): this; /** * Min width for the uploaded image */ minWidth(width: number): this; /** * Max width for the uploaded image */ maxWidth(width: number): this; /** * Min height for the uploaded image */ minHeight(height: number): this; /** * Max height for the uploaded image */ maxHeight(height: number): this; /** * Set image min size in kb */ minSize(size: number): this; /** * Set image max size in kb */ maxSize(size: number): this; /** * Whether to circle the image */ circle(circle?: boolean): this; /** * Set image preview width */ previewWidth(width: number): this; /** * Set image preview height */ previewHeight(height: number): this; /** * Determine if input image can be clearable */ clearable(clearable?: boolean): this; } //# sourceMappingURL=ImageInputBuilder.d.ts.map