import { ComponentDefaultProps } from '@justeattakeaway/pie-webc-core'; import { CSSResult } from 'lit'; import { PieElement } from '@justeattakeaway/pie-webc-core/src/internals/PieElement'; import * as React_2 from 'react'; import { TemplateResult } from 'lit-html'; export declare type DefaultProps = ComponentDefaultProps; export declare const defaultProps: DefaultProps; export declare interface DividerProps { /** * What style variant the divider should be such as default or inverse. */ variant?: typeof variants[number]; /** * What orientation the divider should be such as horizontal or vertical. */ orientation?: typeof orientations[number]; /** * The label text for the divider. */ label?: string; } export declare const orientations: readonly ["horizontal", "vertical"]; export declare const PieDivider: React_2.ForwardRefExoticComponent, "children">> & React_2.RefAttributes & ReactBaseType>; /** * @tagname pie-divider */ declare class PieDivider_2 extends PieElement implements DividerProps { variant: "default" | "inverse"; orientation: "horizontal" | "vertical"; label: string; render(): TemplateResult<1>; static styles: CSSResult; } declare type ReactBaseType = React_2.HTMLAttributes; export declare const variants: readonly ["default", "inverse"]; export { }