import { default as React } from 'react'; export type LoafSize = 'small' | 'medium' | 'large'; export type LoafColor = 'default' | 'gold' | 'error'; export interface LoafProps { size?: LoafSize; color?: LoafColor; bright?: boolean; className?: string; children: React.ReactNode; ref?: React.Ref; } export declare function Loaf(props: LoafProps): import("react/jsx-runtime").JSX.Element;