import React from 'react'; import type { Style, Theme } from '../types'; export type LiquidProps = Theme & Style & { percent: number; shape?: 'rect' | 'circle' | 'pin' | 'triangle'; title?: string; width?: number; height?: number; }; declare const Liquid: (props: LiquidProps) => React.JSX.Element; export default Liquid;