import type { FunctionComponent, ReactNode } from 'react'; import { type PaddingProps } from '../../utils/LayoutPropsUtils.js'; import { type TextStyle } from '../../utils/TextStylePropsUtils.js'; interface LevelProps extends PaddingProps { sticky?: boolean; children: ReactNode; } interface LevelLeftProps { children: ReactNode; } interface LevelRightProps { children: ReactNode; } interface LevelItemProps { textStyle?: TextStyle; children: ReactNode; } /** @public */ export interface LevelComponent extends FunctionComponent { Left: FunctionComponent; Right: FunctionComponent; Item: FunctionComponent; } export declare const Level: LevelComponent; export {};