import { LitElement } from 'lit'; import { SliderFormControlMixin } from '@blueprintui/components/forms'; declare const BpButtonResize_base: typeof LitElement & SliderFormControlMixin; /** * ```typescript * import '@blueprintui/components/include/button-reisze.js'; * ``` * * ```html * * ``` * * @summary The resize button component is used to act as a drag handle to resize an element. Key navigation is supported and the step value can be used to adjust the amount of change when using the arrow keys. * @element bp-button-resize * @since 1.0.0 * @cssprop --background * @cssprop --width * @cssprop --height */ export declare class BpButtonResize extends BpButtonResize_base { static styles: CSSStyleSheet[]; render(): import("lit").TemplateResult<1>; connectedCallback(): void; } export {};