import { InertiaLazyProp, ResponseProps } from '@ioc:EidelLev/Inertia';
export default class LazyProp implements InertiaLazyProp {
    protected lazyPropCallback: () => ResponseProps | Promise<ResponseProps>;
    constructor(lazyPropCallback: () => ResponseProps | Promise<ResponseProps>);
    get lazyValue(): ResponseProps | Promise<ResponseProps>;
}
