/**
 * @jsxRuntime classic
 * @jsx jsx
 */
import { type ComponentType, type FC } from 'react';
import type { CustomThemeButtonProps } from '@atlaskit/button/custom-theme-button-types';
import type { ActionsType, AppearanceTypes } from './types';
type FlagActionsProps = {
    appearance: AppearanceTypes;
    actions: ActionsType;
    linkComponent?: ComponentType<CustomThemeButtonProps>;
    testId?: string;
};
declare const FlagActions: FC<FlagActionsProps>;
export default FlagActions;
