import { ReactNode } from "react"; import { DOMProps } from "@react-types/shared"; export interface SegmentProps extends DOMProps { className?: string; heading?: string; /** Background colour for Segment */ colour?: "subtle" | "primary" | "secondary"; /** When inverted, text is white. Use on darker backgrounds. */ inverted?: boolean; children?: ReactNode; } declare const Segment: { (props: SegmentProps): import("@theme-ui/core/jsx-runtime").JSX.Element; displayName: string; }; export { Segment };