import * as actions from './types/actions'; import { IFieldOptions } from './types/field'; import { IPropertyPaneLabelProps, IPropertyPaneButtonProps, IPropertyPaneCheckboxProps, IPropertyPaneChoiceGroupProps, IPropertyPaneCustomFieldProps, IPropertyPaneDropdownProps, IPropertyPaneLinkProps, IPropertyPaneSliderProps, IPropertyPaneTextFieldProps, IPropertyPaneToggleProps } from '@microsoft/sp-webpart-base'; export declare const addFieldButton: ({ id, name, targetProperty, shouldFocus, visible, properties }: actions.IAddFieldHelper) => actions.IAddFieldAcion; export declare const addFieldCheckBox: ({ id, name, targetProperty, shouldFocus, visible, properties }: actions.IAddFieldHelper) => actions.IAddFieldAcion; export declare const addFieldChoiceGroup: ({ id, name, targetProperty, shouldFocus, visible, properties }: actions.IAddFieldHelper) => actions.IAddFieldAcion; export declare const addFieldCustom: ({ id, name, targetProperty, shouldFocus, visible, properties }: actions.IAddFieldHelper) => actions.IAddFieldAcion; export declare const addFieldDropdown: ({ id, name, targetProperty, shouldFocus, visible, properties }: actions.IAddFieldHelper) => actions.IAddFieldAcion; export declare const addFieldHeading: ({ id, name, targetProperty, shouldFocus, visible }: actions.IAddFieldHelper) => actions.IAddFieldAcion; export declare const addFieldHorizontalRule: ({ id, name, targetProperty, shouldFocus, visible }: actions.IAddFieldHelper) => actions.IAddFieldAcion; export declare const addFieldLabel: ({ id, name, targetProperty, shouldFocus, visible, properties }: actions.IAddFieldHelper) => actions.IAddFieldAcion; export declare const addFieldLink: ({ id, name, targetProperty, shouldFocus, visible, properties }: actions.IAddFieldHelper) => actions.IAddFieldAcion; export declare const addFieldSlider: ({ id, name, targetProperty, shouldFocus, visible, properties }: actions.IAddFieldHelper) => actions.IAddFieldAcion; export declare const addFieldTextField: ({ id, name, targetProperty, shouldFocus, visible, properties }: actions.IAddFieldHelper) => actions.IAddFieldAcion; export declare const addFieldToggle: ({ id, name, targetProperty, shouldFocus, visible, properties }: actions.IAddFieldHelper) => actions.IAddFieldAcion; /** * * @param {string} id * @param {string} name * @returns {actions.IAddFieldAcion} Object of the action */ export declare const addField: (id: string, name: string, visible: boolean, options: IFieldOptions) => actions.IAddFieldAcion; /** * * @param {string} id * @returns {actions.IRemoveFieldAction} Object of the action* */ export declare const removeField: (id: string) => actions.IRemoveFieldAction; /** * * @param {string} id * @param {string} property * @param {any} value * @returns {actions.IUpdateFieldPropertyAction} Object of the action */ export declare const updateFieldProperty: (id: string, property: string, value: any) => actions.IUpdateFieldPropertyAction; //# sourceMappingURL=actions.d.ts.map