import { Redirect } from '@shopify/app-bridge/actions'; export declare type Target = Exclude; export interface ActionProps { /** Content the action displays */ content?: string; /** Should the action be styled as destructive */ destructive?: boolean; /** Should the action be disabled */ disabled?: boolean; /** Forces url to open in a new tab */ external?: boolean; /** * Where to display the target link * @default 'APP' */ target?: Target; /** A destination to link to */ url?: string; /** Callback when an action takes place */ onAction?(): void; } export interface ActionGroupProps { /** Action group title */ title: string; /** List of actions */ actions: ActionProps[]; }