declare type SwitcherActionsProps = { id: string; label: string; onClick: () => void; }; declare type ActionsProps = { actions?: SwitcherActionsProps[]; sideOffset?: number; zIndex?: number; }; declare function Actions({ actions, sideOffset, zIndex }: ActionsProps): JSX.Element | null; export { ActionsProps as A, Actions as a };