import type { FC } from 'react'; import { type SvgIconProps } from './SvgIcon'; export interface PanelRightAnimatedProps extends SvgIconProps { /** Whether the panel is in "open" (active) state */ active?: boolean; } /** * Animated panel-right icon for preview drawer toggle. * * The inner filled panel transitions between narrow (closed) * and wide (open) states via CSS transition. */ export declare const PanelRightAnimated: FC;