/// <reference types="react" />
export interface INewProperties {
    propertyName: string;
    controlRef: React.RefObject<HTMLButtonElement>;
    caption: string;
    accessDenied: boolean;
}
export declare class SelfButton {
    private _properties?;
    get properties(): INewProperties;
    set properties(value: INewProperties);
}
