export interface Fosterbarn { id?: string; fødselsnummer: string; fornavn?: string; etternavn?: string; } export declare const isFosterbarn: (fosterbarn: Partial, includeName?: boolean | undefined) => fosterbarn is Fosterbarn;