import type { FlexBoxProps } from '@ariestools/sdk-react/flexbox'; import type { ReactNode } from 'react'; import React from 'react'; import type { SizeProp } from '../../shared/index.js'; /** Size token for {@link PropertyTitle}, including full-width layout. */ export type TitleSizeProp = SizeProp | 'full'; /** Props for {@link PropertyTitle}. */ export interface PropertyTitleProps extends FlexBoxProps { elevation?: number; more?: ReactNode; size?: TitleSizeProp; tip?: ReactNode; title?: string; } /** Labeled property header with optional tip and trailing actions slot. */ export declare const PropertyTitle: React.FC; //# sourceMappingURL=Title.d.ts.map