import { DataBricksBase, ConstructorProps } from './index'; export interface InstanceProfile { instance_profile_arn: string; } export default class InstanceProfiles extends DataBricksBase { constructor(args: ConstructorProps); add(param: InstanceProfile & { skip_validation?: boolean; }): Promise; list(): Promise<{ instance_profiles: InstanceProfile[]; }>; remove(param: InstanceProfile): Promise; }