interface SystemFeedbackIcons {
    valid: 'circle-check-colored';
    invalid: 'diamond-exclamationmark-colored';
    warning: 'triangle-exclamationmark-colored';
}
export declare const systemFeedbackIcons: SystemFeedbackIcons;
export type SystemFeedbackType = 'valid' | 'invalid' | 'warning';
export {};
