import { Schedule } from 'aws-cdk-lib/aws-events';
import { Construct } from 'constructs';
/**
 * @stability stable
 */
export interface DailySpendToSlackProps {
    /**
     * @stability stable
     */
    readonly schedule: Schedule;
    /**
     * @stability stable
     */
    readonly slackWorkspaceId: string;
    /**
     * @stability stable
     */
    readonly slackChannelId: string;
    /**
     * @stability stable
     */
    readonly slackChannelName: string;
    /**
     * @stability stable
     */
    readonly accountName: string;
}
/**
 * @stability stable
 */
export declare class DailySpendToSlack extends Construct {
    private props;
    /**
     * @stability stable
     */
    constructor(scope: Construct, id: string, props: DailySpendToSlackProps);
}
