export interface FindStrut<T, R> {
    value: R | undefined;
    item: T | undefined;
    found: boolean;
}
