import { Access } from '#csharp/code-dom/access-modifier';
import { Property } from './property';
import { TypeDeclaration } from './type-declaration';
export declare class InterfaceProperty extends Property {
    getAccess: Access;
    setAccess: Access;
    constructor(name: string, type: TypeDeclaration, objectInitializer?: Partial<InterfaceProperty>);
    readonly declaration: string;
}
//# sourceMappingURL=interface-property.d.ts.map