/** Represents an action associated with a page in a report. */
export declare class PageAction {
    /** Unique identifier for the action. */
    Id: string;
    /** The name of the report item associated with the action. */
    ReportItemName: string;
    /** The type of the action (e.g., drilldown, toggle visibility, etc.). */
    Type: string;
    /** An object containing additional parameters for the action. */
    Value: any;
}
