/**
* Finix API
*/
/**
* Details about the `File` resoruce where the `compliance_form` was uploaded.
*/
export declare class ComplianceFormFiles {
/**
*
- Autofills to null.
- When a compliance_form is attested, signed_file will contain a File corresponding to the signed version of the form.
*/
'signedFile'?: string | null;
/**
* ID of the `File` resource that has the `compliance_form`.
*/
'unsignedFile'?: string;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}