import { IdProps } from "./interface/IdProps";
import { StyleProps } from "./interface/StyleProps";
export interface BrProps extends StyleProps, IdProps {
    height?: number | string;
    size?: 'small' | 'medium' | 'large';
}
export declare const Br: ({ height, size, style, id }: BrProps) => import("react/jsx-runtime").JSX.Element;
