import { Construct } from 'constructs';
export interface BudgetsNotificationProps {
    readonly slackWorkspaceId: string;
    readonly slackChannelId: string;
    readonly budgetLimitAmount: number;
    readonly linkedAccounts?: string[];
}
export declare class BudgetsNotification extends Construct {
    constructor(scope: Construct, id: string, props: BudgetsNotificationProps);
}
