import { ButtonConfigInterface } from '@cosmograph/ui'; export interface CosmographButtonZoomInOutConfigInterface extends Omit { onZoomInClick?: () => void; onZoomOutClick?: () => void; zoomInIconSvg?: string; zoomOutIconSvg?: string; /** * Specifies the duration of the animation in milliseconds. * @default 250 **/ duration?: number; /** * Specifies the increment for the zoom level. * @default 1.4 **/ zoomIncrement?: number; } export declare const defaultCosmographButtonZoomInOutConfig: CosmographButtonZoomInOutConfigInterface;