/**
 * This action will change for a given componentForm name his dirty status
 * @param {string} componentId the component form id
 * @param {boolean} dirty the dirty state to apply
 */
export function setComponentFormDirtyState(componentId: string, dirty: boolean): {
    componentId: string;
    dirty: boolean;
    type: string;
};
export const COMPONENT_FORM_SET_DIRTY: "COMPONENT_FORM_SET_DIRTY";
declare namespace _default {
    export { setComponentFormDirtyState };
    export { COMPONENT_FORM_SET_DIRTY };
}
export default _default;
