import { HTMLAttributes, JSX } from 'react';
import { SystemFeedbackType } from './SystemFeedback.utils';
export interface SystemFeedbackProps extends HTMLAttributes<HTMLDivElement> {
    /** Sets the id for connecting the system feedback with aria attributes like aria-describedby */
    id: string;
    /** Defines the message. */
    message: string;
    /** Defines the type. */
    type: SystemFeedbackType;
}
export declare const DSSystemFeedback: ({ id, message, type, className, ...rest }: SystemFeedbackProps) => JSX.Element;
