import type { BaseConfig, BaseProps } from '@studiometa/js-toolkit'; import { AbstractFigure } from './AbstractFigure.js'; import type { AbstractFigureProps } from './AbstractFigure.js'; export interface FigureProps extends AbstractFigureProps { } /** * Figure class. * @link https://ui.studiometa.dev/components/Figure/ */ export declare class Figure extends AbstractFigure { /** * Config. */ static config: BaseConfig; /** * Terminate the component on load. */ onLoad(): void; }