import { ZeniAPIStatus } from '../../responsePayload'; interface SnackbarMessageVariable { variableName: string; variableValue: string; } /** Undefined when the status carries no message, so the snackbar falls back to its generic copy. */ export declare const apiErrorSnackbarVariables: (status: ZeniAPIStatus | undefined) => SnackbarMessageVariable[] | undefined; export {};