/** * Props for the Pool component */ export interface PoolProps { /** Number of columns in the pool grid @default 5 */ columns?: number; /** Radius of each credit circle in pixels @default 4 */ circleRadius?: number; /** Spacing between circles in pixels @default 4 */ circleSpacing?: number; /** Reverse the fill direction (fill from bottom instead of top) @default false */ reverse?: boolean; /** Color of used/allocated credits @default 'black' */ creditColor?: string; /** Color of available/unused credits @default 'grey' */ circleColor?: string; } /** * Pool component displays the credit allocation pool with smooth animations. * * Shows available and used credits as circles in a grid layout. * Credits animate out when allocated to questions and return when deallocated. * * @example * ```tsx * * ``` */ declare function Pool({ columns, circleRadius, circleSpacing, reverse, creditColor, circleColor, }: PoolProps): import("react/jsx-runtime").JSX.Element; export default Pool; //# sourceMappingURL=Pool.d.ts.map