/** * Secondary Action class */ export declare class SecondaryAction { /** * To Select Secondary Option for the listing grid.This function will click on the first row in the listing table, * click on Secondary option and perform the action. * * ```js * SecondaryAction.clickSecondaryActions("Project_123","Export"); * ``` * * @param {string} entityName // Name of the Entity * @param {string} actionToPerform // Action to perform on the entityName */ static clickSecondaryActions(entityName: string, actionToPerform: string): Promise; /** * To Select Primary Option for the listing grid.This function will click on the first row in the listing table, * click on Primary option buton. * * ```js * SecondaryAction.clickPrimaryActions("Project_123","Submit"); * ``` * * @param {string} entityName // Name of the Entity * @param {string} actionToPerform // Action to perform on the entityName */ static clickPrimaryActions(entityName: string, actionToPerform: string): Promise; }