import { type ButtonProps } from '@pitrix/portal-ui'; export interface IButton extends ButtonProps { requiredIamActions?: string[]; } export declare const IamButton: (props: IButton) => JSX.Element | null;