import { CSSResult } from 'lit'; import { PieElement } from '@justeattakeaway/pie-webc-core/src/internals/PieElement'; import { TemplateResult } from 'lit'; export declare interface FormLabelProps { /** * The native for HTML attribute. */ for?: string; /** * Optional text to be placed next to the main label. */ optional?: string; /** * What the trailing text of the label component should be. */ trailing?: string; } /** * @tagname pie-form-label */ export declare class PieFormLabel extends PieElement implements FormLabelProps { for: FormLabelProps['for']; optional: FormLabelProps['optional']; trailing: FormLabelProps['trailing']; private _renderOptionalLabel; private handleClick; render(): TemplateResult<1>; static styles: CSSResult; } export { }