import { BpInput } from '@blueprintui/components/input';
/**
* ```typescript
* import '@blueprintui/components/include/telephone.js';
* ```
*
* ```html
*
*
*
* Enter your contact number
*
* ```
*
* @summary The telephone input component allows users to input and edit telephone numbers. Uses native `` internally for proper mobile keyboard support and native validation.
* @element bp-telephone
* @since 2.10.0
* @slot prefix - slot for prefix text or icons
* @slot suffix - slot for suffix text or icons
* @cssprop --background-size
* @cssprop --color
* @cssprop --background
* @cssprop --border
* @cssprop --border-radius
* @cssprop --outline
* @cssprop --outline-offset
* @cssprop --padding
* @cssprop --font-size
* @cssprop --line-height
* @cssprop --height
* @cssprop --min-width
* @cssprop --width
* @cssprop --transition
* @cssprop --text-align
* @cssprop --cursor
* @event {InputEvent} input - occurs when the value changes
* @event {InputEvent} change - occurs when the value changes
*/
export declare class BpTelephone extends BpInput {
accessor type: string;
static get styles(): CSSStyleSheet[];
}